home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / killpg.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  62 lines

  1. /* 
  2.  * killpg.c --
  3.  *
  4.  *    Procedure to map from Unix kill system call to Sprite Sig_Send call.
  5.  *    Note: many Unix signals are not supported under Sprite.
  6.  *
  7.  * Copyright 1986 Regents of the University of California
  8.  * All rights reserved.
  9.  */
  10.  
  11. #ifndef lint
  12. static char rcsid[] = "$Header: killpg.c,v 1.1 88/06/19 14:31:35 ouster Exp $ SPRITE (Berkeley)";
  13. #endif not lint
  14.  
  15. #include "sprite.h"
  16. #include "sig.h"
  17.  
  18. #include "compatInt.h"
  19. #include <signal.h>
  20. #include <errno.h>
  21.  
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * killpg --
  27.  *
  28.  *    Procedure to map from Unix killpg system call to Sprite 
  29.  *    Sig_Send.
  30.  *
  31.  * Results:
  32.  *    UNIX_ERROR is returned upon error, with the actual error code
  33.  *    stored in errno.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. killpg(pgrp, sig)
  43.     int pgrp;
  44.     int sig;
  45. {
  46.     ReturnStatus status;
  47.     int         spriteSignal;
  48.  
  49.     status = Compat_UnixSignalToSprite(sig, &spriteSignal);
  50.     if (status == FAILURE || (spriteSignal == NULL && sig != 0)) {
  51.     errno = EINVAL;
  52.     return(UNIX_ERROR);
  53.     }
  54.     status = Sig_Send(spriteSignal, pgrp, TRUE);
  55.     if (status != SUCCESS) {
  56.     errno = Compat_MapCode(status);
  57.     return(UNIX_ERROR);    
  58.     } else {
  59.     return(UNIX_SUCCESS);
  60.     }
  61. }
  62.